home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / uemlsrc.arc / errno.h < prev    next >
Text File  |  1987-08-24  |  818b  |  50 lines

  1.  
  2. /*
  3.  * errno.h - error codes
  4.  */
  5.  
  6. #define EPERM   1
  7. #define ENOENT  2
  8. #define ESRCH   3
  9. #define EINTR   4
  10. #define EIO     5
  11. #define ENXIO   6
  12. #define E2BIG   7
  13. #define ENOEXEC 8
  14. #define EBADF   9
  15. #define ECHILD  10
  16. #define EAGAIN  11
  17. #define ENOMEM  12
  18. #define EACCES  13
  19. #define EFAULT  14
  20. #define ENOTBLK 15
  21. #define EBUSY   16
  22. #define EEXIST  17
  23. #define EXDEV   18
  24. #define ENODEV  19
  25. #define ENOTDIR 20
  26. #define EISDIR  21
  27. #define EINVAL  22
  28. #define ENFILE  23
  29. #define EMFILE  24
  30. #define ENOTTY  25
  31. #define ETXTBSY 26
  32. #define EFBIG   27
  33. #define ENOSPC  28
  34. #define ESPIPE  29
  35. #define EROFS   30
  36. #define EMLINK  31
  37. #define EPIPE   32
  38.  
  39. /* math software */
  40. #define EDOM    33
  41. #define ERANGE  34
  42.  
  43. /* hereafter is available to CP/M specials */
  44. #define ENODSPC 35
  45. #define ERENAME 36
  46.  
  47. /****** end of errno.h ******/
  48.  
  49.  
  50.